-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Destination S3V2: Restore Thread-Safety to Unique Key Counter #50989
Merged
johnny-schmidt
merged 1 commit into
master
from
jschmidt/s3v2/restore-thread-safety-for-key-counts
Jan 9, 2025
Merged
Destination S3V2: Restore Thread-Safety to Unique Key Counter #50989
johnny-schmidt
merged 1 commit into
master
from
jschmidt/s3v2/restore-thread-safety-for-key-counts
Jan 9, 2025
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
octavia-squidington-iii
added
area/connectors
Connector related issues
CDK
Connector Development Kit
connectors/destination/s3
labels
Jan 8, 2025
benmoriceau
approved these changes
Jan 8, 2025
tryangul
approved these changes
Jan 8, 2025
johnny-schmidt
force-pushed
the
jschmidt/s3v2/restore-thread-safety-for-key-counts
branch
from
January 8, 2025 21:55
83a93e7
to
af7d487
Compare
octavia-squidington-iii
added
the
area/documentation
Improvements or additions to documentation
label
Jan 8, 2025
johnny-schmidt
force-pushed
the
jschmidt/s3v2/restore-thread-safety-for-key-counts
branch
from
January 8, 2025 23:34
bb92632
to
7fd6556
Compare
johnny-schmidt
force-pushed
the
jschmidt/s3v2/restore-thread-safety-for-key-counts
branch
2 times, most recently
from
January 9, 2025 00:45
dcfe63f
to
814f7cb
Compare
johnny-schmidt
force-pushed
the
jschmidt/s3v2/restore-thread-safety-for-key-counts
branch
from
January 9, 2025 00:57
814f7cb
to
a235199
Compare
johnny-schmidt
force-pushed
the
jschmidt/s3v2/restore-thread-safety-for-key-counts
branch
from
January 9, 2025 16:39
a235199
to
85a29df
Compare
johnny-schmidt
force-pushed
the
jschmidt/s3v2/restore-thread-safety-for-key-counts
branch
from
January 9, 2025 17:27
85a29df
to
32fb615
Compare
johnny-schmidt
deleted the
jschmidt/s3v2/restore-thread-safety-for-key-counts
branch
January 9, 2025 17:51
johnny-schmidt
restored the
jschmidt/s3v2/restore-thread-safety-for-key-counts
branch
January 9, 2025 17:52
Actually looks like rc.5 got in ahead of you, so you'll need to bump this to rc.6. I'll take care of rolling forward |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area/connectors
Connector related issues
area/documentation
Improvements or additions to documentation
CDK
Connector Development Kit
connectors/destination/s3
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What
The changes here removed the access lock around the unique key counter as well as the one around the object list.
This likely caused the unique keys not to be visible across threads, resulting in this failure https://cloud.airbyte.com/workspaces/53a30509-28a4-4158-9c84-200cbad69a25/connections/1e5881b2-1745-437d-8420-d9957a3e4467/timeline?openLogs=true&eventId=403efe8f-a47b-4fb0-81ef-5bdd234394c3. (That exception indicates that multiple process records workers tried to write to the same filename.)
The bug itself caused no harm due to the extra uniqueness check, but it's a simple fix.
(I also cleaned up the alarming log message in the Checker that made me think this was worse than it was. : )